home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / tex / itrns211.zip / LIB / SHENV < prev    next >
Text File  |  1991-08-25  |  840b  |  23 lines

  1. #!/bin/ksh
  2.  
  3. # ITRANSPATH is used by itrans, to look for the files it needs
  4. # (such as devnac.ifm, devnac.afm)
  5. ITRANSPATH=:/usr1/avinash/ITRANS/lib:
  6.  
  7. # TEXFONTS is used by tex, latex, etc, need to provide all paths here..
  8. # even system wide paths have to be mentioned again here..
  9. TEXFONTS=/usr/local/share/tex82/fonts:/usr1/avinash/ITRANS/lib
  10.  
  11. # looks like dvips does not look for the pk files in TEXFONTS (it
  12. # does look for TFM files there), anyway, define TEXPKS for dvips
  13. # to be same as the TEXFONTS definition
  14. TEXPKS=$TEXFONTS
  15.  
  16. # TEXCONFIG is used by dvips, and it understands the empty path
  17. # to mean search in the system wide area, so just need to 
  18. # provide our path here.., system wide paths are taken care of
  19. # automatically.
  20. TEXCONFIG=/usr1/avinash/ITRANS/lib:
  21.  
  22. export TEXCONFIG TEXFONTS TEXPKS ITRANSPATH
  23.